From 044ef5e8e9dfcd81a23f5c2c005062e4945932e1 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 16 Sep 2006 10:43:39 +0000 Subject: [PATCH] (describe-prefix-bindings): Use let, not let*. --- lisp/help.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/help.el b/lisp/help.el index 073bdd3c81c..bc101410bbd 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -309,7 +309,7 @@ If that doesn't give a function, return nil." The prefix described consists of all but the last event of the key sequence that ran this command." (interactive) - (let* ((key (this-command-keys))) + (let ((key (this-command-keys))) (describe-bindings (if (stringp key) (substring key 0 (1- (length key))) -- 2.30.2